home *** CD-ROM | disk | FTP | other *** search
/ Inter.Net 55-1 / Inter.Net 55-1.iso / CBuilder / Setup / BCB / data.z / vararray.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  1998-02-09  |  1.0 KB  |  25 lines

  1. //----------------------------------------------------------------------------
  2. //Borland C++Builder
  3. //Copyright (c) 1987, 1998 Borland International Inc. All Rights Reserved.
  4. //----------------------------------------------------------------------------
  5. //-----------------------------------------------------------------------
  6. //Borland C++Builder
  7. //Copyright (c) 1987, 1998 Borland International Inc. All Rights Reserved.
  8. //---------------------------------------------------------------------------
  9. #include <vcl.h>
  10. #pragma hdrstop
  11. //---------------------------------------------------------------------------
  12. USEFILE("readme.txt");
  13. USERES("VARARRAY.res");
  14. USEFORM("MAIN.cpp", VariantArrayForm);
  15. //---------------------------------------------------------------------
  16. WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
  17. {
  18.     Application->Initialize();
  19.     Application->CreateForm(__classid(TVariantArrayForm), &VariantArrayForm);
  20.     Application->Run();
  21.  
  22.     return 0;
  23. }
  24. //---------------------------------------------------------------------------
  25.